body {
    font-family: Arial, sans-serif;
}

#what-we-do {
    text-align: center;
    margin: 20px;
}

.slider {
    position: relative;
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}


header, footer, section {
    padding: 20px;
    text-align: center;
}





.slides img.active {
    display: block;
}

.slides img {
    width: 25%; /* Set the width of each image to 25% of the container width */
    height: auto; /* Maintain aspect ratio */
    display: inline-block; /* Ensure images are displayed in a row */
    box-sizing: border-box; /* Include padding and border in the width calculation */
}

.dot.active {
    background-color: #717171;
}

.project-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-image img {
    width: 300px;
    height: 200px;
}



footer {
    text-align: center;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

input, textarea {
    margin-top: 5px;
    padding: 10px;
    font-size: 16px;
}
/* Fullscreen Container */
.fullscreen-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Fullscreen Image */
.fullscreen-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}
/* General styling for body and html */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.award-winning {
    display: none; /* Hides the top image */
}

/* Styling for the hero section */
#hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f0f0f0;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin: 0;
    font-size: 2rem;
}

.hero-text p {
    font-size: 1rem;
    margin: 10px 0;
}

.hero-text button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.hero-text button:hover {
    background-color: #0056b3;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Styling for the contact form modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal form {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.modal form h2 {
    margin-top: 0;
}

.modal form label {
    display: block;
    margin: 10px 0 5px;
}

.modal form input, .modal form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 20px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.modal form button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.modal form button:hover {
    background-color: #0056b3;
}

